508cfe6bc74ef46fc1d68b291a19eb12d4f8e815,source/com/intellij/psi/impl/search/PsiSearchHelperImpl.java,PsiSearchHelperImpl,processAllFilesWithWordInLiterals,#String#GlobalSearchScope#Processor#,694

Before Change


  }

  public void processAllFilesWithWordInLiterals(String word, GlobalSearchScope scope, Processor<PsiFile> processor) {
    PsiFile[] files = myManager.getCacheManager().getFilesWithWord(word, UsageSearchContext.IN_STRINGS, scope, true);

    for (PsiFile file : files) {
      if (!processor.process(file)) return;
    }
  }

}

After Change


  }

  public void processAllFilesWithWordInLiterals(String word, GlobalSearchScope scope, Processor<PsiFile> processor) {
    myManager.getCacheManager().processFilesWithWord(processor, word, UsageSearchContext.IN_STRINGS, scope, true);
  }

}